home *** CD-ROM | disk | FTP | other *** search
/ Kyoko 8203 / Kyoko 8203.iso / pc / clip.dxr / 00020_ÉÅÉjÉÖÅ[É{É^Éì.ls < prev    next >
Encoding:
Text File  |  2003-03-10  |  1.4 KB  |  62 lines

  1. global page
  2.  
  3. on mouseUp me
  4.   if sprite(43).movieRate = 1 then
  5.     videopause(sprite(43))
  6.     updateStage()
  7.     set the memberNum of sprite 43 to 8
  8.     updateStage()
  9.   end if
  10.   page = 1
  11.   cursor(0)
  12.   mynumber = me.spriteNum
  13.   case mynumber of
  14.     7:
  15.       go(1, "photo")
  16.       updateStage()
  17.     8:
  18.       go(1, "clip")
  19.       updateStage()
  20.     9:
  21.       go(1, "comic")
  22.       updateStage()
  23.     10:
  24.       go(1, "link")
  25.       updateStage()
  26.   end case
  27. end
  28.  
  29. on mouseEnter me
  30.   cursor([1, 2])
  31.   mynumber = me.spriteNum
  32.   case mynumber of
  33.     7:
  34.       set the memberNum of sprite the spriteNum of me to the number of member "C1_on"
  35.     8:
  36.       set the memberNum of sprite the spriteNum of me to the number of member "C2_on"
  37.     9:
  38.       set the memberNum of sprite the spriteNum of me to the number of member "C3_on"
  39.     10:
  40.       set the memberNum of sprite the spriteNum of me to the number of member "C4_on"
  41.   end case
  42. end
  43.  
  44. on mouseLeave me
  45.   cursor(0)
  46.   mynumber = me.spriteNum
  47.   case mynumber of
  48.     7:
  49.       set the memberNum of sprite the spriteNum of me to the number of member "C1_off"
  50.     8:
  51.       set the memberNum of sprite the spriteNum of me to the number of member "C2_off"
  52.     9:
  53.       set the memberNum of sprite the spriteNum of me to the number of member "C3_off"
  54.     10:
  55.       set the memberNum of sprite the spriteNum of me to the number of member "C4_off"
  56.   end case
  57. end
  58.  
  59. on mouseWithin me
  60.   cursor([1, 2])
  61. end
  62.